home *** CD-ROM | disk | FTP | other *** search
/ Merciful 2 / Merciful - Disc 2.iso / software / i / imagefxv2.1a.lha / ImageFX / Rexx / AutoFX / SaveBufferAs_JPEG.ifx.pre < prev    next >
Text File  |  1996-03-02  |  1KB  |  54 lines

  1. /*
  2.  * SaveBufferAs.ifx.pre
  3.  * Written by Thomas Krehbiel
  4.  *
  5.  * Save main buffer.
  6.  *
  7.  * Inputs:
  8.  *    Word(Arg(1),1) = Sequence number (?)
  9.  *    Word(Arg(1),2) = Total number of frames (N)
  10.  *
  11.  * Returns:
  12.  *    0 if successful, non-zero on failure
  13.  *
  14.  * Revision History:
  15.  *
  16.  *    25.09.95 tek   2.1a: Fixed JPEG quality setting.
  17.  */
  18.  
  19. OPTIONS RESULTS
  20.  
  21. base = 'Autofx_SaveBufferAsJPEG_'
  22.  
  23. lastpath = GETCLIP(base||'Path')
  24. lastext  = GETCLIP(base||'Ext')
  25. lastq    = GETCLIP(base||'Quality')
  26.  
  27. IF lastpath = "" THEN DO
  28.    GetPrefs SavePath
  29.    lastpath = result
  30.    END
  31.  
  32. IF lastext = "" THEN lastext = ".JPG"
  33. IF lastq = "" THEN lastq = 90
  34.  
  35. Gadget.1 = 'STRING  120  5 200 14 "Output Path:" "'lastpath'"'
  36. Gadget.2 = 'FILEREQ 321  5  20 14 "Output Path:" "'lastpath'" AT=1 DIRONLY'
  37. Gadget.3 = 'STRING  120 20 200 14 "New Extension:" "'lastext'"'
  38. Gadget.4 = 'TEXT    120 35   1  1 "(** = current frame number)" 1'
  39. Gadget.5 = 'INTEGER 120 48  50 14 "JPEG Quality:"' lastq 'JU=0'
  40. Gadget.6 = 'TEXT    180 51   1  1 "(25 - 100)"'
  41. Gadget.7 = 'END'
  42.  
  43. NewComplexRequest '"Save Buffer As JPEG"' Gadget 360 68
  44. IF rc ~= 0 THEN EXIT rc
  45.  
  46. IF result.5 < 25 THEN result.5 = 25
  47. IF result.5 > 100 THEN result.5 = 100
  48.  
  49. CALL SETCLIP(base||'Path', result.1)
  50. CALL SETCLIP(base||'Ext',  result.3)
  51. CALL SETCLIP(base||'Quality',  result.5)
  52.  
  53. EXIT
  54.